/* =========================================
   Globale Schriftdefinition (DSGVO-sicher)
   ========================================= */

/* Basis-Schriftfamilie:
   -apple-system  → macOS / iOS
   BlinkMacSystemFont → Safari
   Segoe UI → Windows
   Roboto → Android
   Helvetica Neue / Arial → fallback
   sans-serif → generisch
*/

html, body {
  font-family: -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, "Helvetica Neue",
               Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;               /* angenehmes Dunkelgrau */
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Überschriften */
h1, h2, h3, h4, h5, h6 {
      font-family: -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, "Helvetica Neue",
               Arial, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 1.2em;
  margin-bottom: 0.6em;
  color: #111;
}

/* Links */
a {
  color: #0056b3;
  text-decoration: none;
}

a:hover {
  /*text-decoration: underline;*/
}

/* Absätze */
p {
  margin: 0 0 1em;
}

:root{
  --font-system:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}

/* nur Top-Level (level_1) – Unterpunkte bleiben unverändert */
.mod_navigation.font-system .navbar-start.level_1 > a.navbar-item > [itemprop="name"],
.mod_navigation.font-system .navbar-start.level_1 > .navbar-item.has-dropdown > a.navbar-link > [itemprop="name"]{
  font-family: var(--font-system) !important;
}
